home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
PRINTER
/
MEXLAS.ARJ
/
TXBARCOD.PRG
< prev
next >
Wrap
Text File
|
1991-09-01
|
844b
|
30 lines
*:*********************************************************************
*:
*: Program: TXBARCOD.PRG
*:
*: System: Texas Associated Software Laser Library
*: Author: Jose E. Lopez, Jr.
*: Copyright (c) 1991, Texas Associated Software - Red Oak, TX
*:
*:*********************************************************************
txinit(_print_port)
* The 3 of 9 Bar Code requires a leading and ending "*". These are provided
* by the TX3OF9BC(), so do not add them unless you want them in addition to
* them.
_string = "TEXAS ASSOCIATED SOFTWARE"
txorient("L")
tx3of9bc(10, 10, _string, 10)
txcolprint(21, int(len(_string) / 4) + 10, .t., _string)
txorient("P")
tx3of9bc(10, 10, _string, 10)
txcolprint(21, int(len(_string) / 4) + 10, .t., _string)
txclear()
return
*: EOF: TXBARCOD.PRG